home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / music / umid102.arj / DEVELOPR.TXT < prev    next >
Text File  |  1993-08-31  |  3KB  |  73 lines

  1. 6.0.0 ************* CHAPTER 6. - NOTE FOR DEVELOPERS *********************
  2.  
  3.   You must include the following files with your installation software.
  4.   The customer is not expected to already have these:
  5.  
  6.   ULTRAMID.EXE  - MIDI and Digital audio TSR
  7.   UM206A.INI    - Configuration for people who have 2.06a or later
  8.   UM206.INI     -                                   2.06
  9.   UM200.INI     -                                   2.00 - 2.05 Release
  10.   GF166.COM     - UltraSound DIGPAK driver version 3.2 (optional)
  11.   GF1DIGI.ADV   - AIL Digital audio driver (optional)
  12.   GF1MIDI.ADV   - AIL MIDI driver (optional)
  13.  
  14.   Here is an example batch script that you might use to install the
  15.   appropriate files onto the users hard disk.  This example script
  16.   assumes that these files are uncompressed on the A: drive, and that
  17.   the destination directory is C:\GAME.
  18.  
  19.   REM
  20.   REM check to see if the user has at least version 2.00 of the GUS software
  21.   REM
  22.   IF EXIST %ULTRADIR%\MIDI\ACPIANO.PAT GOTO START
  23.   echo :   WARNING: You are running out dated UltraSound     :
  24.   echo :   patches. Please contact Advanced Gravis to get    :
  25.   echo :   the updated software, (604)431-1807 Mon-Fri       :
  26.   echo :   8am to 4pm.                                       :
  27.   GOTO EXIT
  28.   :START
  29.   REM
  30.   REM copy ultramid to the destination directory
  31.   REM
  32.   copy A:\ULTRAMID.EXE C:\GAME
  33.   REM
  34.   REM Find out which configuration file to copy, and then copy to ultramid.ini
  35.   REM
  36.   IF EXIST %ULTRADIR%\MIDI\HONKY.PAT GOTO V206A
  37.   copy A:\UM200.ini C:\GAME\ULTRAMID.INI
  38.   GOTO DRIVERS
  39.   :V206A
  40.   IF NOT EXIST %ULTRADIR%\MIDI\TREMSTR.PAT GOTO V206
  41.   IF NOT EXIST %ULTRADIR%\MIDI\CHARANG.PAT GOTO V206
  42.   IF NOT EXIST %ULTRADIR%\MIDI\ECHOVOX.PAT GOTO V206
  43.   copy A:\UM206A.INI C:\GAME\ULTRAMID.INI
  44.   goto DRIVERS
  45.   :V206
  46.   copy A:\UM206.INI C:\GAME\ULTRAMID.INI
  47.   IF ERRORLEVEL 1 GOTO BAD_COPY
  48.   :DRIVERS
  49.   REM
  50.   REM If you are using DIGPAK
  51.   REM
  52.   copy A:\GF166.COM C:\GAME
  53.   REM
  54.   REM If you are using the AIL digital audio driver
  55.   REM
  56.   copy A:\GF1DIGI.ADV C:\GAME
  57.   REM
  58.   REM If you are using the AIL midi driver
  59.   REM
  60.   copy A:\GF1MIDI.ADV C:\GAME
  61.  
  62.   Here is a batch file you might create for the user to start the game:
  63.   C:
  64.   cd \GAME
  65.   LH ULTRAMID -NULTRAMID.INI -DC:\GAME\
  66.   GAME
  67.  
  68.   In this case, the -N and -D parameters aren't necessary because UltraMID
  69.   defaults to ultramid.ini in the current directory.  I just put it there
  70.   so you could see how it works.
  71.  
  72.       ....................... END of Chapter 6 ...........................
  73.